home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mega Guia 2004 June
/
Mega Guia: 2004-06.iso
/
_files
/
free
/
myalbum
/
ES
/
myalbumsetup.exe
/
{app}
/
DemoJScript.js
< prev
next >
Wrap
Text File
|
2003-02-16
|
564b
|
22 lines
// Simple JScript script for MyAlbum
// Get the current album, list all
// pictures and select them
App.ClearTrace();
App.Trace( "MyAlbum version: " + App.Version, -1, TRACE_INFORMATION );
var alb = App.GetCurrentAlbum(), s;
nb = alb.nbPicture;
App.Trace( "Pictures in this album: " + nb, -1, TRACE_INFORMATION );
for (i = 0; i < nb; i++) {
pic = alb.GetPicture(i);
pic.bSelected = 1;
s = pic.sShortFileName + " - " + pic.sCommentFirstLine;
App.trace( s );
}
alb.ReDraw();
App.trace( "Done !", -1, TRACE_GREENDOT );